Style is the directory where the must be __style.html file and __style subdirectory (do not necessarily).
__style.html file is HTML file in UTF-8 encoding, into which a special macro substitutes the contents page and some additional parameters that are written below. For example, default style:
<HTML>
<HEAD>
<META HTTP-EQUIV='CONTENT-TYPE' CONTENT='TEXT/HTML; CHARSET=UTF-8'/>
<STYLE type="text/css">
body, div, p, table {
font-size:${fontsize}pt;
font-family:$fontfamily;
}
img{border:none}
$userstyle
</STYLE>
$userhead
</HEAD>
<BODY>
<P>$content</P>
</BODY>
</HTML>
__style.html file contains a substitution macros that begin with "$" character followed by a macro name, perhaps surrounded by curly braces, for example: $content or ${content}. The second case is needed, if immediately after the macro must be placed some text right next to it (without spaces). Currently supports the following styles of macro substitution: